home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 11: TSX-11 / Linux Cubed Series 11 - TSX-11 Vol 1.iso / sbin / bootutil.1 / bootutil / bootutils / mount / etc / rc.local < prev    next >
Encoding:
Text File  |  1993-07-01  |  354 b   |  21 lines

  1. # /etc/rc.local
  2. #
  3. # This file is executed after /etc/rc and consist of local customizations.
  4.  
  5. # christen ourselves
  6. hostname shiva
  7.  
  8. # enable screen blanking
  9. setterm -blank 5
  10.  
  11. # quiet floppy chatter
  12. setfdprm -n /dev/fd0
  13. setfdprm -n /dev/fd1
  14.  
  15. if [ -f /etc/rc.net ]
  16. then
  17.     /etc/rc.net
  18.     # now we can safely mount our NFS filesystems, if any
  19.     mount -avt nfs
  20. fi
  21.